Proxy Server Options
When calling theJMSetProxyInfo
function, you must pass a data structure containing information about the proxy server. TheJMGetProxyInfo
function returns information in this structure. The proxy server data structure is defined by theJMProxyInfo
data type.
struct JMProxyInfo { Boolean useProxy; char proxyHost[255]; UInt16 proxyPort; };For more information about using this structure, see the
Field Description
useProxy
- If set to true, the specified proxy is to be used.
proxyHost
- The name of the proxy server.
proxyPort
- The port number of the proxy server.
JMGetProxyInfo
function andJMSetProxyInfo
function.